home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _E4E387DC689748409EB6406E733F50B5 < prev    next >
Encoding:
Text File  |  2006-08-04  |  730 b   |  28 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_MosaicGlass():
  13.     return {
  14.         'NumRows': 40, 
  15.         'NumColumns': 25, 
  16.         'GroutWidth': 2, 
  17.         'Symmetric': App.Constants.Boolean.false, 
  18.         'GroutDiffusion': 50, 
  19.         'GlassCurvature': 0, 
  20.         'EdgeCurvature': 10, 
  21.         'FillColor': (0,0,0)
  22.         }
  23.  
  24. def Do(Environment):
  25.     # Mosaic Glass
  26.     App.Do( Environment, 'MosaicGlass',         Preset_MosaicGlass())
  27.  
  28.